wordpress get current category slug

108

wordpress get page slug -

// Get the queried object and sanitize it
$current_page = sanitize_post( $GLOBALS['wp_the_query']->get_queried_object() );
// Get the page slug
$slug = $current_page->post_name;

wordpress get current category slug -

$category = get_category(get_query_var('cat'));
echo $category->slug; 
// Echo the category slug of default taxonomy (Category)

Comments

Submit
0 Comments